2020-2021 Sunseeker Telemetry and Lighting System
framctl_a_ex1_write.c
Go to the documentation of this file.
1 /* --COPYRIGHT--,BSD
2  * Copyright (c) 2017, Texas Instruments Incorporated
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * * Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  * --/COPYRIGHT--*/
32 //******************************************************************************
51 //******************************************************************************
52 #include "driverlib.h"
53 
54 #if defined (__TI_COMPILER_VERSION__)
55 #pragma PERSISTENT(FRAM_TEST_START)
56 uint32_t FRAM_TEST_START =
57 #elif defined (__IAR_SYSTEMS_ICC__)
58 __persistent uint32_t FRAM_TEST_START =
59 #elif defined (__GNUC__)
60 __attribute__ ((section (".persistent"))) uint32_t FRAM_TEST_START =
61 #endif
62  0xCABA;
63 
64 void main(void) {
65  uint8_t count = 0;
66  uint32_t data = 0;
67 
68  WDT_A_hold(WDT_A_BASE); // Stop WDT
69 
70  //Set P1.0 as an output pin.
71  /*
72 
73  * Select Port 1
74  * Set Pin 0 as output
75  */
76  GPIO_setAsOutputPin(GPIO_PORT_P1, GPIO_PIN0);
77  //Set P3.5 as an output pin.
78  /*
79 
80  * Select Port 3
81  * Set Pin 5 as output
82  */
83  GPIO_setAsOutputPin(GPIO_PORT_P3, GPIO_PIN5);
84 
85  /*
86  * Disable the GPIO power-on default high-impedance mode to activate
87  * previously configured port settings
88  */
89  PMM_unlockLPM5();
90 
91  // Initialize dummy data
92  data = 0x11111111;
93 
94  while (1) {
95  data += 0x00010001;
96 
97  FRAMCtl_A_fillMemory32(data, (uint32_t *)(uintptr_t)FRAM_TEST_START,
98  128);
99  count++;
100  if (count > 100) {
101  //Toggle P1.0 output pin.
102  /*
103 
104  * Select Port 1
105  * Set Pin 0 as output
106  */
107  GPIO_toggleOutputOnPin(GPIO_PORT_P1, GPIO_PIN0);
108  //Toggle P3.5 output pin.
109  /*
110 
111  * Select Port 3
112  * Set Pin 5 as output
113  */
114  GPIO_toggleOutputOnPin(GPIO_PORT_P3, GPIO_PIN5);
115 
116  count = 0; //Reset counter
117  data = 0x11111111;
118  }
119  }
120 }
#define FRAM_TEST_START
void main(void)